From 79e5898480cf02e7fe812afaea18dcd76457711d Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Mon, 17 Mar 2008 11:16:08 +0000 Subject: [PATCH] hvm bios: Fix EDD pointer in int 13h, fn 48h BIOS call return buffer I ran into this when I was reviewing what was outstanding to get NetWare to run fully virtualized. The BIOS emulator code has the segment and offset backward in the returned buffer for the int 13h, fn 48h BIOS call. Signed-off-by: Bruce Rogers --- tools/firmware/rombios/rombios.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/firmware/rombios/rombios.c b/tools/firmware/rombios/rombios.c index a37879bd95..b6cb0552aa 100644 --- a/tools/firmware/rombios/rombios.c +++ b/tools/firmware/rombios/rombios.c @@ -779,8 +779,8 @@ typedef struct { Bit32u sector_count1; Bit32u sector_count2; Bit16u blksize; - Bit16u dpte_segment; Bit16u dpte_offset; + Bit16u dpte_segment; Bit16u key; Bit8u dpi_length; Bit8u reserved1; -- 2.30.2